Skip to main content

All Questions

3votes
2answers
185views

BlackJack in python

I began creating blackjack in python; however, I'm looking to simulate it, so I'm thinking I'm going to need to optimize it so that I don't just leave my computer running for three hours waiting for ...
Joseph Beegle's user avatar
3votes
1answer
184views

Made a simple platformer game in arcade library of Python

This is a simple game I am making in the arcade library of Python. I am quite new to object-oriented programming as well as game development. I feel like a lot of the code is inefficient, so I was ...
Asjal Ahmad's user avatar
6votes
2answers
340views

Load maps into game

I'm currently designing a game using a game engine I created and I'm currently implementing a method that loads maps into my game. The maps are made using Tiled Map Editor, saved as an XML file and ...
Mathew O'Dwyer's user avatar
11votes
2answers
903views

Minesweeper implementation

Please review my implementation of the Minesweeper game Kata. Any and all feedback will be much appreciated. I would love to hear your feedback on readability, simplicity, performance, and any code ...
Marquis Blount's user avatar
3votes
2answers
158views

Ball Entity for a Entity/Component/System Soccer Game

Here is a code snippet of a class that I be interested to refactor. I was in doubt on how to proceed with the process of instantiation. The original ask was here. After think about it and heard some ...
alexpfx's user avatar
4votes
0answers
85views

Comparison of sprite movement implementations

I've come up with two ways to do sprite movement with CreateJS, and I'm wondering if one is better than the other as far as performance and maintainability. The player data is saved in a json file ...
Big McLargeHuge's user avatar
7votes
2answers
9kviews

"Deal Or No Deal"-style game in Java

This game is explained here. Could this code be more efficient? The Game Class ...
Andrew Asmer's user avatar

close